home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 41
/
Aminet 41 (2001)(Schatztruhe)[!][Feb 2001].iso
/
Aminet
/
dev
/
misc
/
Progr_Langs_v6.lha
/
Progr_Langs
/
cpp_verification
/
s.cpp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1999-01-19
|
187 b
|
14 lines
#include <stl.h>
// STL verification
void main()
{
vector<float> v;
v.push_back(2.3);
v.push_back(1);
v.push_back(567.89);
cout << "# of elements = " << v.size() << endl;
}